home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / LIFER__ / PROTO / U / LIFE_INP.H < prev    next >
Text File  |  1991-07-27  |  805b  |  33 lines

  1. /* LIFE_INPUT */
  2.  
  3. /* File name: LIFE_INPUT */
  4. /* Function: Handle a modal dialog */
  5. /* History: 7/27/91 Original by Prototyper 3.0   */
  6.  
  7.  
  8.  
  9. /* ======================================================= */
  10.  
  11. /* Init the modal dialog */
  12. void D_Init_LIFE_INPUT(void);
  13.  
  14. /* Hook into the modal dialog filter routine */
  15. Boolean D_Filter_LIFE_INPUT(DialogPtr theDialog, EventRecord *theEvent, short *itemHit);
  16.  
  17. /* Refresh the modal dialog */
  18. void D_Refresh_LIFE_INPUT(DialogPtr theDialog);
  19.  
  20. /* Setup the modal dialog */
  21. void D_Setup_LIFE_INPUT(DialogPtr theDialog);
  22.  
  23. /* Hit in the modal dialog */
  24. void D_Hit_LIFE_INPUT(DialogPtr theDialog, short itemHit, Boolean *ExitDialog);
  25.  
  26. /* Exit the modal dialog */
  27. void D_Exit_LIFE_INPUT(DialogPtr theDialog);
  28.  
  29.  
  30. /* ======================================================= */
  31.  
  32.  
  33.